home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / Demos / Bombardier_PC / BSCRIPTS.CST / 00125_Script_bomb_logo < prev    next >
Text File  |  1999-04-25  |  1KB  |  43 lines

  1. -- ⌐ 1998 @radical.media, inc. & Concurrent New Media Group, L.L.C.
  2. -- Developed for Bombardier, Inc.
  3. --
  4. -- All programming developed by: 
  5. -- Robert Fabricant, Valerie Valoueva, Ossi Shaked, 
  6. -- Henry Sauvageot, Chris Howell & Chris Girand
  7. --
  8. -- Use of this code by parties other than @radical.media, inc. or their
  9. --agents 
  10. -- without the express written consent of @radical.media, inc. AND Concurrent 
  11. -- New Media Group, L.L.C. is strictly prohibited.
  12. ------------------------------------------------------
  13.  
  14. property neuName, mySprite, rolName
  15.  
  16.  
  17. on new me
  18.   set mySprite = the spriteNum of me
  19.   set neuName = the name of member (the member of sprite mySprite)
  20.   set rolName = "logo_ov-rol"
  21.   
  22. end
  23.  
  24.  
  25. on mouseenter me
  26.   set the member of sprite mySprite = member rolName
  27.   puppetsound 3, "subroll"
  28.   updatestage
  29. end
  30.  
  31. on mouseleave me
  32.   set the member of sprite mySprite = member neuName
  33.   updatestage
  34. end
  35.  
  36. on mouseup
  37.   sound stop 1
  38.   sound stop 2
  39.   updatestage
  40.   puppetsound 3,"mouse5"
  41.   pass
  42. end
  43.